home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000432_news@columbia.edu _Tue Mar 18 09:17:54 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA07803
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 18 Mar 1997 09:17:53 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA05284
  7.     for kermit.misc@watsun; Tue, 18 Mar 1997 09:17:53 -0500 (EST)
  8. Path: news.columbia.edu!panix!news.eecs.umich.edu!news.mathworks.com!howland.erols.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Back to basics (One way communications)
  12. Message-ID: <1997Mar18.065822.95678@cc.usu.edu>
  13. Date: 18 Mar 97 06:58:21 MDT
  14. References: <5gjqnd$2o1@usenet.srv.cis.pitt.edu>
  15. Organization: Utah State University
  16. Lines: 40
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:6764
  18.  
  19. In article <5gjqnd$2o1@usenet.srv.cis.pitt.edu>, jlfox+@pitt.edu (James L Fox) writes:
  20. > Being an old Kermit user and advocate and a person who helped
  21. > many others with their modem/phone/comm port problems, I'm a
  22. > bit sheepish asking this question...
  23. > I'm trying to do simple vt100 emulation using ms-kermit 3.11
  24. > driving an external 2400 Zoom modem through comm port 2.  This
  25. > setup has worked flawlessly for years on an HP 386 PC. My 
  26. > problem started when I plugged the modem into comm port 2 of
  27. > a Gateway 2000 486-66 machine and tried to run kermit from
  28. > DOS. I do "mode com2:24,n,8,1" from dos. From kermit, I can then
  29. > dial "atdt 5551212" and listen to a successful connect....BUT
  30. > throughout the process, my screen stays BLANK!  Kermit knows
  31. > how to write to the screen since it will if I "set duplex half".
  32. > I tried 2 other internal 2400 baud modems to see if the modem
  33. > is broke, but the results are the same.  It must be between the
  34. > Gateway and kermit, I guess. I'm using the mskermit.ini file that
  35. > worked on the HP with the port # changed from 1 to 2.
  36. > Does the ability to make the modem dial allow me to imply that
  37. > kermit is dealing correctly with comm2? 
  38.  
  39.     Close. It says the port address is ok so Kermit can reach
  40.  the UART for transmission. What it does not say is received bytes 
  41.  can reach Kermit. And that means the IRQ must be correct as well 
  42.  because that is what causes Kermit to read the UART for received 
  43.  information. Both port address and IRQ must be correct and free
  44.  of conflict.
  45.      Btw, we are at version 3.15 beta these days, a great deal
  46.  further along the road than v3.11.
  47.     Joe D.
  48.  
  49. >I am a little suspicious
  50. > of the fact that the Gateway mouse is using Comm port 1 and kermit
  51. > has a "set comN x\0xxx" command (which I'm not using) BUT I keep
  52. > thinking that these can't be interfering OR I wouldn't be able to
  53. > make it dial.   :-(  Help!
  54. > Thanks,
  55. > --Jim Fox